4fb4a63f65393144defc649934d10f0467a4e2a2,src/main/java/com/brohoof/minelittlepony/model/pony/ModelPlayerPony.java,ModelPlayerPony,animate,#number#number#number#number#number#Entity#,48
Before Change
this.rotateHead(horz, vert);
this.swingTailZ(move, swing);
float bodySwingRotation = 0.0F;
if (this.swingProgress > -9990.0F && (!this.metadata.getRace().hasHorn() || this.metadata.getGlowColor() == 0)) {
bodySwingRotation = MathHelper.sin(MathHelper.sqrt_float(this.swingProgress) * 3.1415927F * 2.0F) * 0.2F;
}
After Change
this.rotateHead(horz, vert);
this.swingTailZ(move, swing);
float bodySwingRotation = 0.0F;
if (this.swingProgress > -9990.0F && !this.metadata.hasMagic()) {
bodySwingRotation = MathHelper.sin(MathHelper.sqrt_float(this.swingProgress) * 3.1415927F * 2.0F) * 0.2F;
}